home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- FramePlugin.cpp ---------------------------------------------
- * Copyright (c) 1996, Adobe Systems, Inc. All rights reserved.
- *
- *
- *------------------------------------------------------------------
- */
-
- #include <string.h>
-
- #include "PMPlugin.h"
- #include "CIWindow.h"
- #include "CICommandsAndQueries.h"
- #include "CIInterfaceManager.h"
- #include "PMInterfaceIDs.h"
- #include "PMCQErrs.h"
-
- #include "FramePlugin.h"
-
- #include "PCL.h"
-
- /*---externals ---*/
- extern PMMessage *gPMMessage;
- extern sPMParamBlockPtr gPB;
-
- /*
- *--- ColorerPlugin ------------------------------------------------
- * No special initialization needed.
- *------------------------------------------------------------------
- */
- FramePlugin::FramePlugin() : PPluginCall()
- {
-
- }
-
- void FramePlugin::DoLoad()
- {
-
- }
-
- void FramePlugin::DoInvoke() throw (PMErr)
- {
-
- }
-
- void FramePlugin::DoUnload()
- {
-
- }
-
- void FramePlugin::DoRegister()
- {
-
- }
-
- void FramePlugin::DoPMEvent()
- {
-
- }
-
- void FramePlugin::DoPMSysEvent()
- {
-
- }
-
- void FramePlugin::DoAcquireInterface()
- {
-
- }
-
- void FramePlugin::DoReleaseInterface()
- {
-
- }
-
- void FramePlugin::DoCleanup()
- {
-
- }
-
- void FramePlugin::DoShutdown()
- {
-
- }
-